home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
cpp_libs
/
rjs.lha
/
RJS
/
String
/
src
/
pos.C
< prev
next >
Wrap
C/C++ Source or Header
|
1991-06-14
|
193b
|
14 lines
#include "String.h"
RJS_SubString &RJS_SubString::pos(int &pos)
{
pos=int(sd.data)-int(str->sd.data);
return *this;
}
RJS_String &RJS_String::pos(int &pos)
{
pos=0;
return *this;
}